home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / arp-pro1.3 / OLD_MANUAL / CheckAbort < prev    next >
Text File  |  1990-06-22  |  942b  |  67 lines

  1.  
  2.  
  3.  
  4.      CheckAbort(31.0)      ARP Programmers Manual      CheckAbort(31.0)
  5.  
  6.  
  7.  
  8.      NAME
  9.       CheckAbort - Check for control C
  10.  
  11.      SYNOPSIS
  12.       BOOL = CheckAbort( (*Func)() )
  13.        d0            A1
  14.  
  15.      FUNCTION
  16.       Check    to see if a CONTROL-C signal was sent to this process,
  17.       calling a user function or returning a boolean value.
  18.  
  19.      INPUTS
  20.       (*Func)() - Function to call if signal was recieved.    This
  21.           is optional, and may be NULL.
  22.  
  23.      RESULT
  24.       BOOL - FALSE (zero) if signal    not received.  If (*Func)() is
  25.           not null, and    signal was received, return value will
  26.           be that of user function.  If    (*Func)() is NULL,
  27.           return value will be signal flag.
  28.  
  29.      ADDITIONAL    CONSIDERATIONS
  30.       If break occured, a pointer to the string "***BREAK" will be
  31.       returned in A1, suitable for a direct    call to    Puts() from
  32.       assembly language.
  33.  
  34.      BUGS
  35.       None known.
  36.  
  37.      AUTHOR
  38.       SDB
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                         (printed 2/22/88)
  64.  
  65.  
  66.  
  67.